from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

81618

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-10-21
Convert-Binary-C - 0.860.0
Ebuild name:

dev-perl/Convert-Binary-C-0.860.0

Description

Binary Data Conversion using C Types

Added to portage

2025-10-21

YAML-Syck - 1.360.0
Ebuild name:

dev-perl/YAML-Syck-1.360.0

Description

Fast, lightweight YAML loader and dumper

Added to portage

2025-10-21

aiohttp - 3.13.1
Ebuild name:

dev-python/aiohttp-3.13.1

Description

HTTP client/server for asyncio

Added to portage

2025-10-21

aurorae - 6.5.0
Ebuild name:

kde-plasma/aurorae-6.5.0

Description

Themeable window decoration for KWin

Added to portage

2025-10-21

backports-zstd - 1.0.0-r1
Ebuild name:

dev-python/backports-zstd-1.0.0-r1

Description

Backport of PEP-784 adding Zstandard to the standard library

Added to portage

2025-10-21

bluedevil - 6.5.0
Ebuild name:

kde-plasma/bluedevil-6.5.0

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-10-21

breeze - 6.5.0
Ebuild name:

kde-plasma/breeze-6.5.0

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-10-21

breeze-grub - 6.5.0
Ebuild name:

kde-plasma/breeze-grub-6.5.0

Description

Breeze theme for GRUB

Added to portage

2025-10-21

breeze-gtk - 6.5.0
Ebuild name:

kde-plasma/breeze-gtk-6.5.0

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-10-21

breeze-plymouth - 6.5.0
Ebuild name:

kde-plasma/breeze-plymouth-6.5.0

Description

Breeze theme for Plymouth

Added to portage

2025-10-21

calver - 2025.10.20
Ebuild name:

dev-python/calver-2025.10.20

Description

Setuptools extension for CalVer package versions

Added to portage

2025-10-21

click - 8.3.1
Ebuild name:

dev-python/click-8.3.1

Description

A Python package for creating beautiful command line interfaces

Added to portage

2025-10-21

cython - 3.1.5
Ebuild name:

dev-python/cython-3.1.5

Description

A Python to C compiler

Added to portage

2025-10-21

flask-compress - 1.20
Ebuild name:

dev-python/flask-compress-1.20

Description

Compress responses in your Flask app with gzip

Added to portage

2025-10-21

fsautocomplete - 0.80.0
Ebuild name:

dev-dotnet/fsautocomplete-0.80.0

Description

F language server using the Language Server Protocol

Added to portage

2025-10-21

googleapis-common-protos - 1.71.0
Ebuild name:

dev-python/googleapis-common-protos-1.71.0

Description

Python classes generated from the common protos in the g

Added to portage

2025-10-21

hypothesis - 6.142.2
Ebuild name:

dev-python/hypothesis-6.142.2

Description

A library for property based testing

Added to portage

2025-10-21

inline-snapshot - 0.30.1
Ebuild name:

dev-python/inline-snapshot-0.30.1

Description

Create and update inline snapshots in your Python tests

Added to portage

2025-10-21

insipid-sphinx-theme - 0.4.3
Ebuild name:

dev-python/insipid-sphinx-theme-0.4.3

Description

Insipid Sphinx theme

Added to portage

2025-10-21

ipykernel - 6.31.0
Ebuild name:

dev-python/ipykernel-6.31.0

Description

IPython Kernel for Jupyter

Added to portage

2025-10-21

kmymoney - 5.2.1-r2
Ebuild name:

app-office/kmymoney-5.2.1-r2

Description

Personal finance manager based on KDE Frameworks

Added to portage

2025-10-21

kombu - 5.6.0_rc2
Ebuild name:

dev-python/kombu-5.6.0_rc2

Description

AMQP Messaging Framework for Python

Added to portage

2025-10-21

libcaca - 0.99_beta19-r12
Ebuild name:

media-libs/libcaca-0.99_beta19-r12

Description

A library that creates colored ASCII-art graphics

Added to portage

2025-10-21

libcaca - 0.99_beta20-r1
Ebuild name:

media-libs/libcaca-0.99_beta20-r1

Description

A library that creates colored ASCII-art graphics

Added to portage

2025-10-21

libdwarf - 2.2.0
Ebuild name:

dev-libs/libdwarf-2.2.0

Description

Library intended to simplify reading (and writing) applications using DWARF

Added to portage

2025-10-21

libxslt - 1.1.43-r2
Ebuild name:

dev-libs/libxslt-1.1.43-r2

Description

XSLT libraries and tools

Added to portage

2025-10-21

logical-unification - 0.4.7
Ebuild name:

dev-python/logical-unification-0.4.7

Description

Logical unification in Python

Added to portage

2025-10-21

narwhals - 2.9.0
Ebuild name:

dev-python/narwhals-2.9.0

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2025-10-21

pandoc-bin - 3.8.2.1
Ebuild name:

app-text/pandoc-bin-3.8.2.1

Description

Conversion between markup formats (binary package)

Added to portage

2025-10-21

patsy - 1.0.2
Ebuild name:

dev-python/patsy-1.0.2

Description

Python module to describe statistical models and design matrices

Added to portage

2025-10-21

pgmodeler - 1.2.2
Ebuild name:

dev-db/pgmodeler-1.2.2

Description

PostgreSQL Database Modeler

Added to portage

2025-10-21

pixi - 0.57.0
Ebuild name:

dev-util/pixi-0.57.0

Description

A package management and workflow tool

Added to portage

2025-10-21

pwsh-bin - 7.5.4
Ebuild name:

app-shells/pwsh-bin-7.5.4

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2025-10-21

pylint - 4.0.2
Ebuild name:

dev-python/pylint-4.0.2

Description

Python code static checker

Added to portage

2025-10-21

pytest-subtests - 0.15.0
Ebuild name:

dev-python/pytest-subtests-0.15.0

Description

Unittest subTest() support and subtests fixture

Added to portage

2025-10-21

qtdeclarative - 6.10.0-r1
Ebuild name:

dev-qt/qtdeclarative-6.10.0-r1

Description

Qt Declarative (Quick 2)

Added to portage

2025-10-21

requests-file - 3.0.1
Ebuild name:

dev-python/requests-file-3.0.1

Description

File transport adapter for Requests

Added to portage

2025-10-21

sbcl - 2.5.8-r1
Ebuild name:

dev-lisp/sbcl-2.5.8-r1

Description

Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp

Added to portage

2025-10-21

stunnel - 5.76
Ebuild name:

net-misc/stunnel-5.76

Description

TLS/SSL - Port Wrapper

Added to portage

2025-10-21

tree-sitter - 0.25.2
Ebuild name:

dev-python/tree-sitter-0.25.2

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2025-10-21

typer - 0.20.0
Ebuild name:

dev-python/typer-0.20.0

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2025-10-21

unixODBC - 2.3.14
Ebuild name:

dev-db/unixODBC-2.3.14

Description

Complete ODBC driver manager

Added to portage

2025-10-21

veracrypt - 1.26.7-r1
Ebuild name:

app-crypt/veracrypt-1.26.7-r1

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2025-10-21

webrtc-audio-processing - 2.1
Ebuild name:

media-libs/webrtc-audio-processing-2.1

Description

AudioProcessing library from the webrtc.org codebase

Added to portage

2025-10-21

xca - 2.8.0
Ebuild name:

app-crypt/xca-2.8.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2025-10-21

xca - 2.9.0
Ebuild name:

app-crypt/xca-2.9.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2025-10-21

xca - 2.9.0-r1
Ebuild name:

app-crypt/xca-2.9.0-r1

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2025-10-21

xor-analyze - 0.5-r1
Ebuild name:

app-crypt/xor-analyze-0.5-r1

Description

Program for cryptanalyzing xor 'encryption' with variable key length

Added to portage

2025-10-21

xterm - 403
Ebuild name:

x11-terms/xterm-403

Description

Terminal Emulator for X Windows

Added to portage

2025-10-21

xvfbwrapper - 0.2.15
Ebuild name:

dev-python/xvfbwrapper-0.2.15

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2025-10-21

2025-10-20
argcomplete - 3.6.3
Ebuild name:

dev-python/argcomplete-3.6.3

Description

Bash tab completion for argparse

Added to portage

2025-10-20

bash - 5.4_alpha_pre20251017
Ebuild name:

app-shells/bash-5.4_alpha_pre20251017

Description

The standard GNU Bourne again shell

Added to portage

2025-10-20

bnd - 7.1.0-r3
Ebuild name:

dev-java/bnd-7.1.0-r3

Description

bndlib A Swiss Army Knife for OSGi

Added to portage

2025-10-20

cli11 - 2.6.0
Ebuild name:

dev-cpp/cli11-2.6.0

Description

Command line parser for C++11

Added to portage

2025-10-20

curl - 8.17.0_rc1
Ebuild name:

net-misc/curl-8.17.0_rc1

Description

A Client that groks URLs

Added to portage

2025-10-20

dist-kernel - 5.15.195
Ebuild name:

virtual/dist-kernel-5.15.195

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-20

dist-kernel - 6.1.157
Ebuild name:

virtual/dist-kernel-6.1.157

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-20

dist-kernel - 6.12.54
Ebuild name:

virtual/dist-kernel-6.12.54

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-20

dist-kernel - 6.17.4
Ebuild name:

virtual/dist-kernel-6.17.4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-20

dist-kernel - 6.6.113
Ebuild name:

virtual/dist-kernel-6.6.113

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-20

dulwich - 0.24.6
Ebuild name:

dev-python/dulwich-0.24.6

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2025-10-20

element-desktop-bin - 1.12.1
Ebuild name:

net-im/element-desktop-bin-1.12.1

Description

A glossy Matrix collaboration client for desktop (binary package)

Added to portage

2025-10-20

exfatprogs - 1.3.0
Ebuild name:

sys-fs/exfatprogs-1.3.0

Description

Userspace utilities for the exFAT filesystem

Added to portage

2025-10-20

fastdoubleparser - 2.0.1
Ebuild name:

dev-java/fastdoubleparser-2.0.1

Description

A Java port of Daniel Lemire's fast_float project

Added to portage

2025-10-20

galera - 26.4.24
Ebuild name:

sys-cluster/galera-26.4.24

Description

Synchronous multi-master replication engine that provides the wsrep API

Added to portage

2025-10-20

gap - 4.15.1
Ebuild name:

sci-mathematics/gap-4.15.1

Description

System for computational discrete algebra. Core functionality.

Added to portage

2025-10-20

gcc - 16.0.0_p20251019
Ebuild name:

sys-devel/gcc-16.0.0_p20251019

Description

The GNU Compiler Collection

Added to portage

2025-10-20

gentoo-kernel - 5.15.195
Ebuild name:

sys-kernel/gentoo-kernel-5.15.195

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel - 6.1.157
Ebuild name:

sys-kernel/gentoo-kernel-6.1.157

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel - 6.12.54
Ebuild name:

sys-kernel/gentoo-kernel-6.12.54

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel - 6.17.4
Ebuild name:

sys-kernel/gentoo-kernel-6.17.4

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel - 6.6.113
Ebuild name:

sys-kernel/gentoo-kernel-6.6.113

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel-bin - 5.15.195
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.195

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel-bin - 6.1.157
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.157

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel-bin - 6.12.54
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.54

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel-bin - 6.17.4
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.17.4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-20

gentoo-kernel-bin - 6.6.113
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.113

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-20

gentoo-sources - 5.15.195
Ebuild name:

sys-kernel/gentoo-sources-5.15.195

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-20

gentoo-sources - 6.1.157
Ebuild name:

sys-kernel/gentoo-sources-6.1.157

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-20

gentoo-sources - 6.12.54
Ebuild name:

sys-kernel/gentoo-sources-6.12.54

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-20

gentoo-sources - 6.17.4
Ebuild name:

sys-kernel/gentoo-sources-6.17.4

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-20

gentoo-sources - 6.6.113
Ebuild name:

sys-kernel/gentoo-sources-6.6.113

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-20

git-lfs - 3.7.1
Ebuild name:

dev-vcs/git-lfs-3.7.1

Description

Command line extension and specification for managing large files with git

Added to portage

2025-10-20

git-sources - 6.18_rc2
Ebuild name:

sys-kernel/git-sources-6.18_rc2

Description

The very latest -git version of the Linux kernel

Added to portage

2025-10-20

jackson-annotations - 2.13.4-r1
Ebuild name:

dev-java/jackson-annotations-2.13.4-r1

Description

Core annotations used for value types, used by Jackson data

Added to portage

2025-10-20

jackson-annotations - 2.20
Ebuild name:

dev-java/jackson-annotations-2.20

Description

Core annotations used for value types, used by Jackson data bindi

Added to portage

2025-10-20

jackson-core - 2.13.4-r1
Ebuild name:

dev-java/jackson-core-2.13.4-r1

Description

Core Jackson processing abstractions (Streaming API), implementatio

Added to portage

2025-10-20

jackson-core - 2.20.0
Ebuild name:

dev-java/jackson-core-2.20.0

Description

Core Jackson processing abstractions (Streaming API), implementation f

Added to portage

2025-10-20

jackson-databind - 2.13.4.1-r1
Ebuild name:

dev-java/jackson-databind-2.13.4.1-r1

Description

General data-binding functionality for Jackson works on core

Added to portage

2025-10-20

jackson-databind - 2.20.0
Ebuild name:

dev-java/jackson-databind-2.20.0

Description

General data-binding functionality for Jackson works on core strea

Added to portage

2025-10-20

jackson-dataformat-xml - 2.13.4-r2
Ebuild name:

dev-java/jackson-dataformat-xml-2.13.4-r2

Description

Data format extension for Jackson

Added to portage

2025-10-20

jackson-dataformat-xml - 2.20.0
Ebuild name:

dev-java/jackson-dataformat-xml-2.20.0

Description

Data format extension for Jackson

Added to portage

2025-10-20

jackson-dataformat-yaml - 2.13.4-r2
Ebuild name:

dev-java/jackson-dataformat-yaml-2.13.4-r2

Description

Support for reading and writing YAML-encoded data via Ja

Added to portage

2025-10-20

jackson-dataformat-yaml - 2.20.0
Ebuild name:

dev-java/jackson-dataformat-yaml-2.20.0

Description

Support for reading and writing YAML-encoded data via Jacks

Added to portage

2025-10-20

jackson-module-jakarta-xmlbind - 2.13.4-r2
Ebuild name:

dev-java/jackson-module-jakarta-xmlbind-2.13.4-r2

Description

Support for using Jakarta XML Bind (aka JAXB 3.0)

Added to portage

2025-10-20

jackson-module-jakarta-xmlbind - 2.20.0
Ebuild name:

dev-java/jackson-module-jakarta-xmlbind-2.20.0

Description

Support for using Jakarta XML Bind (aka JAXB 3.0) an

Added to portage

2025-10-20

jcommander - 1.82-r1
Ebuild name:

dev-java/jcommander-1.82-r1

Description

Command line parsing framework for Java

Added to portage

2025-10-20

jellyfin-bin - 10.11.0
Ebuild name:

www-apps/jellyfin-bin-10.11.0

Description

Jellyfin puts you in control of managing and streaming your media

Added to portage

2025-10-20

json-path - 2.9.0-r1
Ebuild name:

dev-java/json-path-2.9.0-r1

Description

Java JsonPath implementation

Added to portage

2025-10-20

junit-pioneer - 1.9.1-r1
Ebuild name:

dev-java/junit-pioneer-1.9.1-r1

Description

JUnit 5 Extension Pack

Added to portage

2025-10-20

kaidan - 0.13.0
Ebuild name:

net-im/kaidan-0.13.0

Description

Modern XMPP chat app for every device

Added to portage

2025-10-20

kicad - 9.0.5
Ebuild name:

sci-electronics/kicad-9.0.5

Description

Electronic Schematic and PCB design tools

Added to portage

2025-10-20

kicad-footprints - 9.0.5
Ebuild name:

sci-electronics/kicad-footprints-9.0.5

Description

Electronic Schematic and PCB design tools footprint librarie

Added to portage

2025-10-20

kicad-meta - 9.0.5
Ebuild name:

sci-electronics/kicad-meta-9.0.5

Description

Electronic Schematic and PCB design tools (meta package)

Added to portage

2025-10-20

kicad-packages3d - 9.0.5
Ebuild name:

sci-electronics/kicad-packages3d-9.0.5

Description

Electronic Schematic and PCB design tools 3D package librari

Added to portage

2025-10-20

kicad-symbols - 9.0.5
Ebuild name:

sci-electronics/kicad-symbols-9.0.5

Description

Electronic Schematic and PCB design tools symbol libraries

Added to portage

2025-10-20

kicad-templates - 9.0.5
Ebuild name:

sci-electronics/kicad-templates-9.0.5

Description

Electronic Schematic and PCB design tools project templates

Added to portage

2025-10-20

krita - 6.0.0_alpha_pre20251020
Ebuild name:

media-gfx/krita-6.0.0_alpha_pre20251020

Description

Free digital painting application. Digital Painting, Creati

Added to portage

2025-10-20

libevdev - 1.13.5
Ebuild name:

dev-libs/libevdev-1.13.5

Description

Handler library for evdev events

Added to portage

2025-10-20

libreoffice - 25.2.7.1
Ebuild name:

app-office/libreoffice-25.2.7.1

Description

A full office productivity suite

Added to portage

2025-10-20

libreoffice-l10n - 25.2.7.1
Ebuild name:

app-office/libreoffice-l10n-25.2.7.1

Description

Translations for the Libreoffice suite

Added to portage

2025-10-20

libucontext - 1.3.3
Ebuild name:

sys-libs/libucontext-1.3.3

Description

ucontext implementation featuring glibc-compatible ABI

Added to portage

2025-10-20

libxkbcommon - 1.12.1
Ebuild name:

x11-libs/libxkbcommon-1.12.1

Description

Keymap handling library for toolkits and window systems

Added to portage

2025-10-20

lidarr-bin - 3.0.0.4855
Ebuild name:

www-apps/lidarr-bin-3.0.0.4855

Description

Looks and smells like Sonarr but made for music

Added to portage

2025-10-20

log4j-core - 2.19.0-r2
Ebuild name:

dev-java/log4j-core-2.19.0-r2

Description

The Apache Log4j Implementation

Added to portage

2025-10-20

maim - 5.8.1-r1
Ebuild name:

media-gfx/maim-5.8.1-r1

Description

Commandline tool to take screenshots of the desktop

Added to portage

2025-10-20

nuitka - 2.8.3
Ebuild name:

dev-python/nuitka-2.8.3

Description

Python to native compiler

Added to portage

2025-10-20

onedrive - 2.5.7-r1
Ebuild name:

net-misc/onedrive-2.5.7-r1

Description

Free Client for OneDrive on Linux

Added to portage

2025-10-20

orage - 4.21.0
Ebuild name:

app-office/orage-4.21.0

Description

A calendar application for Xfce

Added to portage

2025-10-20

protobuf-java - 4.32.1-r1
Ebuild name:

dev-java/protobuf-java-4.32.1-r1

Description

Core Protocol Buffers library

Added to portage

2025-10-20

protobuf-java - 4.33.0
Ebuild name:

dev-java/protobuf-java-4.33.0

Description

Core Protocol Buffers library

Added to portage

2025-10-20

prowlarr-bin - 2.1.5.5213
Ebuild name:

www-apps/prowlarr-bin-2.1.5.5213

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2025-10-20

psutil - 7.1.1
Ebuild name:

dev-python/psutil-7.1.1

Description

Retrieve information on running processes and system utilization

Added to portage

2025-10-20

pv - 1.9.44
Ebuild name:

sys-apps/pv-1.9.44

Description

Pipe Viewer a tool for monitoring the progress of data through a pipe

Added to portage

2025-10-20

pypdf - 6.1.2
Ebuild name:

dev-python/pypdf-6.1.2

Description

Python library to work with PDF files

Added to portage

2025-10-20

pytest-describe - 2.2.1
Ebuild name:

dev-python/pytest-describe-2.2.1

Description

Describe-style plugin for pytest

Added to portage

2025-10-20

qxmpp - 1.11.3
Ebuild name:

net-libs/qxmpp-1.11.3

Description

Cross-platform C++ XMPP client and server library

Added to portage

2025-10-20

setuptools-scm - 9.2.2
Ebuild name:

dev-python/setuptools-scm-9.2.2

Description

Manage versions by scm tags via setuptools

Added to portage

2025-10-20

slixmpp - 1.12.0
Ebuild name:

dev-python/slixmpp-1.12.0

Description

Python 3 library for XMPP

Added to portage

2025-10-20

slop - 7.7-r1
Ebuild name:

x11-misc/slop-7.7-r1

Description

Application that queries the user for a selection for printing

Added to portage

2025-10-20

snakeyaml - 1.33-r1
Ebuild name:

dev-java/snakeyaml-1.33-r1

Description

YAML 1.1 parser and emitter for Java

Added to portage

2025-10-20

snakeyaml - 2.5
Ebuild name:

dev-java/snakeyaml-2.5

Description

YAML 1.1 parser and emitter for Java

Added to portage

2025-10-20

testng - 6.11-r3
Ebuild name:

dev-java/testng-6.11-r3

Description

Testing framework inspired by JUnit and NUnit with new features

Added to portage

2025-10-20

testng - 6.11-r4
Ebuild name:

dev-java/testng-6.11-r4

Description

Testing framework inspired by JUnit and NUnit with new features

Added to portage

2025-10-20

testparameterinjector - 1.18-r1
Ebuild name:

dev-java/testparameterinjector-1.18-r1

Description

TestParameterInjector For JUnit4

Added to portage

2025-10-20

testparameterinjector - 1.19
Ebuild name:

dev-java/testparameterinjector-1.19

Description

TestParameterInjector For JUnit4

Added to portage

2025-10-20

vanilla-kernel - 5.15.195
Ebuild name:

sys-kernel/vanilla-kernel-5.15.195

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-20

vanilla-kernel - 6.1.157
Ebuild name:

sys-kernel/vanilla-kernel-6.1.157

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-20

vanilla-kernel - 6.12.54
Ebuild name:

sys-kernel/vanilla-kernel-6.12.54

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-20

vanilla-kernel - 6.17.4
Ebuild name:

sys-kernel/vanilla-kernel-6.17.4

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-20

vanilla-kernel - 6.6.113
Ebuild name:

sys-kernel/vanilla-kernel-6.6.113

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-20

vanilla-sources - 5.15.195
Ebuild name:

sys-kernel/vanilla-sources-5.15.195

Description

Full sources for the Linux kernel

Added to portage

2025-10-20

vanilla-sources - 6.1.157
Ebuild name:

sys-kernel/vanilla-sources-6.1.157

Description

Full sources for the Linux kernel

Added to portage

2025-10-20

vanilla-sources - 6.12.54
Ebuild name:

sys-kernel/vanilla-sources-6.12.54

Description

Full sources for the Linux kernel

Added to portage

2025-10-20

vanilla-sources - 6.17.4
Ebuild name:

sys-kernel/vanilla-sources-6.17.4

Description

Full sources for the Linux kernel

Added to portage

2025-10-20

vanilla-sources - 6.6.113
Ebuild name:

sys-kernel/vanilla-sources-6.6.113

Description

Full sources for the Linux kernel

Added to portage

2025-10-20

vdr-osdteletext - 2.3.1_p20211217-r1
Ebuild name:

media-plugins/vdr-osdteletext-2.3.1_p20211217-r1

Description

VDR Plugin Osd-Teletext displays the teletext/vide

Added to portage

2025-10-20

vdr-skinelchihd - 1.2.9
Ebuild name:

media-plugins/vdr-skinelchihd-1.2.9

Description

VDR Skin Plugin skinelchihd

Added to portage

2025-10-20

vdr-undelete - 2.3.1_pre1-r1
Ebuild name:

media-plugins/vdr-undelete-2.3.1_pre1-r1

Description

VDR Plugin Recover deleted recordings of VDR

Added to portage

2025-10-20

vdr-vdrmanager - 0.15
Ebuild name:

media-plugins/vdr-vdrmanager-0.15

Description

VDR Plugin remote programming VDR using VDR-Manager running on An

Added to portage

2025-10-20

vdr-vompserver - 0.5.1-r1
Ebuild name:

media-plugins/vdr-vompserver-0.5.1-r1

Description

VDR Plugin server part for MediaMVP device

Added to portage

2025-10-20

vdr-zappilot - 0.0.6
Ebuild name:

media-plugins/vdr-zappilot-0.0.6

Description

VDR Plugin browse fast the EPG information without being to switch

Added to portage

2025-10-20

virtualbox - 7.1.12-r1
Ebuild name:

app-emulation/virtualbox-7.1.12-r1

Description

Family of powerful x86 virtualization products for enterprise an

Added to portage

2025-10-20

virtualbox - 7.2.2-r1
Ebuild name:

app-emulation/virtualbox-7.2.2-r1

Description

Family of powerful x86 virtualization products for enterprise and

Added to portage

2025-10-20

wrapt - 2.0.0
Ebuild name:

dev-python/wrapt-2.0.0

Description

Module for decorators, wrappers and monkey patching

Added to portage

2025-10-20

x265 - 4.1
Ebuild name:

media-libs/x265-4.1

Description

Library for encoding video streams into the H.265/HEVC format

Added to portage

2025-10-20

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 74.5 ms